GET api/clients/latestfeedbackmodifieddate?clientIds[0]={clientIds[0]}&clientIds[1]={clientIds[1]}

Gets the most recent feedback modified date againt provided clientId(s)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientIds

Client Id(s) to get feedback modified time against

Collection of integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns

Dictionary of integer [key] and date [value]

Response Formats

application/json, text/json

Sample:
{
  "1": "2024-12-23T11:50:46.5411735-07:00",
  "3": "2024-12-23T11:50:46.5411735-07:00"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfintdateTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfintdateTime>
    <Key>1</Key>
    <Value>2024-12-23T11:50:46.5411735-07:00</Value>
  </KeyValueOfintdateTime>
  <KeyValueOfintdateTime>
    <Key>3</Key>
    <Value>2024-12-23T11:50:46.5411735-07:00</Value>
  </KeyValueOfintdateTime>
</ArrayOfKeyValueOfintdateTime>